home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-05 / 3mhs099.zip / 3MHSINST.BAT < prev    next >
DOS Batch File  |  1992-03-18  |  1KB  |  38 lines

  1. @Echo Off
  2. Echo 3+MHS Gateway - Installation
  3. Echo.
  4. IF %1x == x Goto Help
  5. IF %2x == x Goto Help
  6. Echo                Installing from: %1
  7. Echo    Installing to MHS Directory: %2
  8. Echo.
  9. Echo This installation procedure assumes the 3+MHS Gateway has already
  10. Echo been defined to the MHS Directory Manager as a gateway (i.e. the
  11. Echo standard MHS gateway subtree has been created). If this step has
  12. Echo not been done, press CTRL-BREAK, otherwise
  13. Pause
  14.  
  15. Echo Copying files from %1 to %2\PUBLIC
  16. COPY %1\*.* %2\PUBLIC
  17. Echo Creating 3+MAIL processing subdirectories
  18. MD %2\3MAIL
  19. MD %2\3MAIL\IN
  20. MD %2\3MAIL\OUT
  21. Echo.
  22. Echo 3+MHS Gateway software has been installed.
  23. Echo.
  24. Echo Don't forget to modify 3MHS-IN.BAT and 3MHS-OUT.BAT.
  25. Echo.
  26. Goto Done
  27.  
  28. :Help
  29. ECHO Usage: 3MHSINST Source GWDir
  30. ECHO where
  31. ECHO        Source = Path to distribution files (e.g. A:)
  32. ECHO        GWDir = 3+MHS Gateway directory (e.g. F:\MHS\MAIL\GATES\3MHS)
  33. ECHO.
  34. ECHO WARNING: Do *NOT* specify trailing backslash!
  35. ECHO.
  36.  
  37. :Done
  38.